remove respawn
This commit is contained in:
parent
4e70aa7bfb
commit
5423662201
1 changed files with 1 additions and 65 deletions
64
config.scm
64
config.scm
|
|
@ -163,13 +163,10 @@
|
||||||
'("/data/shows" . "/tv")
|
'("/data/shows" . "/tv")
|
||||||
'("/home/bartronx7/downloads" . "/downloads"))))
|
'("/home/bartronx7/downloads" . "/downloads"))))
|
||||||
|
|
||||||
;; docker run --rm --name some-sftpgo -p 8080:8080 -p 2022:2022 -d "drakkan/sftpgo:tag"
|
|
||||||
|
|
||||||
(oci-container-configuration
|
(oci-container-configuration
|
||||||
(image "drakkan/sftpgo:latest")
|
(image "drakkan/sftpgo:latest")
|
||||||
(provision "sftpgo")
|
(provision "sftpgo")
|
||||||
(network "sandbox")
|
(network "sandbox")
|
||||||
(respawn? #t)
|
|
||||||
(ports '(
|
(ports '(
|
||||||
("8082" . "8080")
|
("8082" . "8080")
|
||||||
("2022" . "2022")))
|
("2022" . "2022")))
|
||||||
|
|
@ -179,67 +176,6 @@
|
||||||
'("/data/music" . "/music")
|
'("/data/music" . "/music")
|
||||||
'("/data/pictures" . "/pictures")))))))
|
'("/data/pictures" . "/pictures")))))))
|
||||||
|
|
||||||
;; (oci-container-configuration
|
|
||||||
;; (image "postgres:15")
|
|
||||||
;; (provision "ente-db")
|
|
||||||
;; (network "sandbox")
|
|
||||||
;; (respawn? #t)
|
|
||||||
;; (ports '(
|
|
||||||
;; ("5433" . "5432")))
|
|
||||||
;; (environment (list
|
|
||||||
;; '("POSTGRES_USER" . "ente")
|
|
||||||
;; '("POSTGRES_PASSWORD" . "00u5kas()_1")
|
|
||||||
;; '("POSTGRES_DB" . "ente_db")))
|
|
||||||
;; (volumes (list
|
|
||||||
;; '("/data/docker/volumes/ente/db" . "/var/lib/postgresql/data"))))
|
|
||||||
;;
|
|
||||||
;; (oci-container-configuration
|
|
||||||
;; (image "ghcr.io/ente-io/server")
|
|
||||||
;; (provision "ente-museum")
|
|
||||||
;; (requirement '(ente-db minio))
|
|
||||||
;; (network "sandbox")
|
|
||||||
;; (ports '(
|
|
||||||
;; ("8090" . "8080")
|
|
||||||
;; ("2112" . "2112")))
|
|
||||||
;; (environment (list
|
|
||||||
;; '("ENTE_CREDENTIALS_FILE" . "/credentials.yaml")))
|
|
||||||
;; (volumes (list
|
|
||||||
;; '("/data/docker/volumes/ente/logs" . "/var/logs")
|
|
||||||
;; '("/data/docker/volumes/ente/museum.yaml" . "/museum.yaml:ro")
|
|
||||||
;; '("/data/docker/volumes/ente/credentials.yaml" . "/credentials.yaml:ro")
|
|
||||||
;; '("/data/docker/volumes/ente/data" . "/data:ro"))))
|
|
||||||
;;
|
|
||||||
;; (oci-container-configuration
|
|
||||||
;; (image "ghcr.io/ente-io/web")
|
|
||||||
;; (provision "ente-web")
|
|
||||||
;; (requirement '(ente-museum))
|
|
||||||
;; (network "sandbox")
|
|
||||||
;; (ports '(
|
|
||||||
;; ("3010" . "3000")
|
|
||||||
;; ("3011" . "3001")
|
|
||||||
;; ("3012" . "3002")
|
|
||||||
;; ("3013" . "3003")))
|
|
||||||
;; (environment (list
|
|
||||||
;; '("ENTE_API_ORIGIN" . "https://museum.akeley.tech")
|
|
||||||
;; '("ENTE_ALBUMS_ORIGIN" . "https://localhost:3002"))))
|
|
||||||
|
|
||||||
;; (oci-container-configuration
|
|
||||||
;; (image "minio/minio")
|
|
||||||
;; (provision "minio")
|
|
||||||
;; (network "sandbox")
|
|
||||||
;; (command '("server" "--address" ":3200" "--console-address" ":3201" "/data"))
|
|
||||||
;; (ports '(
|
|
||||||
;; ("3200" . "3200")
|
|
||||||
;; ("3201" . "3201")))
|
|
||||||
;; (environment (list
|
|
||||||
;; '("MINIO_USER" . "test")
|
|
||||||
;; '("MINIO_ROOT_USER" . "myminioadmin")
|
|
||||||
;; '("MINIO_ROOT_PASSWORD" . "u8^ll01.Qs")
|
|
||||||
;; '("MINIO_CONFIG_ENV_FILE" . "/etc/config.env")))
|
|
||||||
;; (volumes (list
|
|
||||||
;; '("/data/docker/volumes/minio/data" . "/data")
|
|
||||||
;; '("/data/docker/volumes/minio/env" . "/etc/config.env")))))))
|
|
||||||
|
|
||||||
%base-services))
|
%base-services))
|
||||||
|
|
||||||
(bootloader (bootloader-configuration
|
(bootloader (bootloader-configuration
|
||||||
|
|
|
||||||
Reference in a new issue