mirror of
https://github.com/Haxxnet/Compose-Examples
synced 2024-11-27 22:11:12 +00:00
Update docker-compose.yml
upgrade forte to 4.3
This commit is contained in:
parent
631fe7e222
commit
c843b286a7
|
@ -2,23 +2,26 @@ version: '3'
|
||||||
|
|
||||||
services:
|
services:
|
||||||
app:
|
app:
|
||||||
image: kaangiray26/forte:2.8
|
image: kaangiray26/forte:4.3
|
||||||
container_name: forte
|
container_name: forte
|
||||||
restart: on-failure
|
restart: on-failure
|
||||||
#ports:
|
ports:
|
||||||
# - "3000:3000"
|
- 3000:3000
|
||||||
depends_on:
|
depends_on:
|
||||||
postgres:
|
postgres:
|
||||||
condition: service_healthy
|
condition: service_healthy
|
||||||
environment:
|
environment:
|
||||||
mode: public
|
port: 3000 # Set Port
|
||||||
port: 3000
|
version: "4.3" # Set Version
|
||||||
|
verbose: false # Verbose Logging
|
||||||
|
custom_about: false # For your own about page
|
||||||
|
hostname: localhost # Set Hostname
|
||||||
NODE_ENV: production # Set Node Environment
|
NODE_ENV: production # Set Node Environment
|
||||||
POSTGRES_HOST: postgres # Postgres Host/IP
|
POSTGRES_HOST: postgres # Postgres Host/IP
|
||||||
POSTGRES_PORT: 5432 # Postgres Database Port
|
|
||||||
POSTGRES_DB: forte # Set Postgres Database Name
|
|
||||||
POSTGRES_USER: forte # Set Postgres Username
|
POSTGRES_USER: forte # Set Postgres Username
|
||||||
POSTGRES_PASSWORD: forte # Set Postgres Password
|
POSTGRES_PASSWORD: forte # Set Postgres Password
|
||||||
|
POSTGRES_PORT: 5432 # Postgres Database Port
|
||||||
|
POSTGRES_DB: forte # Set Postgres Database Name
|
||||||
volumes:
|
volumes:
|
||||||
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/forte/library:/library # your music library to import from
|
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/forte/library:/library # your music library to import from
|
||||||
#networks:
|
#networks:
|
||||||
|
|
Loading…
Reference in New Issue
Block a user