0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-23 23:18:48 -05:00

📎 Add missing restart policy to some containers

on default compose file
This commit is contained in:
Andrey Antukh 2023-02-10 14:07:12 +01:00
parent c467d04d50
commit 1ed3b3cf75

View file

@ -36,6 +36,7 @@ services:
penpot-frontend: penpot-frontend:
image: "penpotapp/frontend:latest" image: "penpotapp/frontend:latest"
restart: always
ports: ports:
- 9001:80 - 9001:80
@ -96,6 +97,8 @@ services:
penpot-backend: penpot-backend:
image: "penpotapp/backend:latest" image: "penpotapp/backend:latest"
restart: always
volumes: volumes:
- penpot_assets:/opt/data/assets - penpot_assets:/opt/data/assets
@ -214,6 +217,7 @@ services:
penpot-exporter: penpot-exporter:
image: "penpotapp/exporter:latest" image: "penpotapp/exporter:latest"
restart: always
networks: networks:
- penpot - penpot
@ -268,6 +272,7 @@ services:
# minio: # minio:
# image: "minio/minio:latest" # image: "minio/minio:latest"
# command: minio server /mnt/data --console-address ":9001" # command: minio server /mnt/data --console-address ":9001"
# restart: always
# #
# volumes: # volumes:
# - "penpot_minio:/mnt/data" # - "penpot_minio:/mnt/data"