Does this docker-compose file looks decent?
Suncatcher16 wrote > version: '3' > services: > guacamole: > image: 'guacamole/guacamole' > container_name: 'guaca' > depends_on: > - guacd > links: > - guacd:guacd > - postgres:postgres > environment: > - POSTGRES_DATABASE= > - POSTGRES_USER= > - POSTGRES_PASSWORD= > - GUACAMOLE_HOME=/guacamole_home > volumes: > - /var/log/guacamole:/guacamole_home > restart: 'unless-stopped' > network_mode: "bridge" > postgres: > image: postgres:9.6.4 > container_name: 'db' > restart: 'unless-stopped' > network_mode: "bridge" > volumes: > - db-data:/var/lib/postgresql/data > - /var/log/posty:/docker-entrypoint-initdb.d > guacd: > image: 'guacamole/guacd' > container_name: 'daemon' > restart: 'unless-stopped' > network_mode: "bridge" > volumes: > db-data: -- Sent from: http://apache-guacamole-incubating-users.2363388.n4.nabble.com/
