diff --git a/compose/apps.yml b/compose/apps.yml index aeba692..44b9ad3 100644 --- a/compose/apps.yml +++ b/compose/apps.yml @@ -12,6 +12,7 @@ volumes: jellyfin_config: {} jellyfin_cache: {} pgadmin: {} + pgadmin_data: {} privatebin_data: {} thelounge_data: {} @@ -65,7 +66,6 @@ services: ghost-db: image: mysql:8 - container_name: ghost-db security_opt: - seccomp:unconfined restart: always @@ -81,7 +81,6 @@ services: ghost-server: image: ghost - container_name: ghost_server cap_add: - CAP_SYS_NICE security_opt: @@ -182,7 +181,7 @@ services: PGADMIN_DEFAULT_EMAIL: "${PGADMIN_DEFAULT_EMAIL}" PGADMIN_DEFAULT_PASSWORD: "${PGADMIN_DEFAULT_PASSWORD}" volumes: - - pgadmin-data:/var/lib/pgadmin/ + - pgadmin_data:/var/lib/pgadmin/ restart: unless-stopped expose: - 80 diff --git a/compose/services.yml b/compose/services.yml index e4f4b7c..9a5235b 100644 --- a/compose/services.yml +++ b/compose/services.yml @@ -35,7 +35,6 @@ services: postgres: image: postgres - # container_name: postgres environment: POSTGRES_DB: ${POSTGRES_DB} POSTGRES_USER: ${POSTGRES_USER}