remove respawn
This commit is contained in:
parent
4e70aa7bfb
commit
5423662201
1 changed files with 1 additions and 65 deletions
66
config.scm
66
config.scm
|
|
@ -163,83 +163,19 @@
|
|||
'("/data/shows" . "/tv")
|
||||
'("/home/bartronx7/downloads" . "/downloads"))))
|
||||
|
||||
;; docker run --rm --name some-sftpgo -p 8080:8080 -p 2022:2022 -d "drakkan/sftpgo:tag"
|
||||
|
||||
(oci-container-configuration
|
||||
(image "drakkan/sftpgo:latest")
|
||||
(provision "sftpgo")
|
||||
(network "sandbox")
|
||||
(respawn? #t)
|
||||
(ports '(
|
||||
("8082" . "8080")
|
||||
("2022" . "2022")))
|
||||
(volumnes (list
|
||||
(volumnes (list
|
||||
'("/data/movies" . "/movies")
|
||||
'("/data/shows" . "/shows")
|
||||
'("/data/music" . "/music")
|
||||
'("/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))
|
||||
|
||||
(bootloader (bootloader-configuration
|
||||
|
|
|
|||
Reference in a new issue