snibox and filebrowser: add container_name
This commit is contained in:
parent
089f26b7a6
commit
998a1598ac
|
@ -189,6 +189,7 @@ services:
|
||||||
|
|
||||||
filebrowser:
|
filebrowser:
|
||||||
image: filebrowser/filebrowser:s6
|
image: filebrowser/filebrowser:s6
|
||||||
|
container_name: filebrowser
|
||||||
environment:
|
environment:
|
||||||
- PUID=${PUID}
|
- PUID=${PUID}
|
||||||
- PGID=${PGID}
|
- PGID=${PGID}
|
||||||
|
@ -300,6 +301,7 @@ services:
|
||||||
|
|
||||||
snibox_frontend:
|
snibox_frontend:
|
||||||
image: snibox/nginx-puma:1.15.9
|
image: snibox/nginx-puma:1.15.9
|
||||||
|
container_name: snibox_frontend
|
||||||
ports:
|
ports:
|
||||||
- "${SNIBOX_EXTERNAL_PORT}:${SNIBOX_INTERNAL_PORT}"
|
- "${SNIBOX_EXTERNAL_PORT}:${SNIBOX_INTERNAL_PORT}"
|
||||||
volumes:
|
volumes:
|
||||||
|
@ -311,6 +313,7 @@ services:
|
||||||
|
|
||||||
snibox_backend:
|
snibox_backend:
|
||||||
image: snibox/snibox:latest
|
image: snibox/snibox:latest
|
||||||
|
container_name: snibox_backend
|
||||||
command: sh -c "rm -rf tmp/pids && ./bin/rails s -p 3000 -b '0.0.0.0'"
|
command: sh -c "rm -rf tmp/pids && ./bin/rails s -p 3000 -b '0.0.0.0'"
|
||||||
env_file:
|
env_file:
|
||||||
- snibox.env
|
- snibox.env
|
||||||
|
|
Loading…
Reference in New Issue