version: '2' services: gogs: image: gogs/gogs:latest environment: DISABLE_REGISTRATION: 'true' RUN_CROND: 'true' SHOW_REGISTRATION_BUTTON: 'false' volumes: - /mnt/volume-data/gogs/gogs-data:/data links: - postgres:database - postgres:postgres ports: - 2222:22/tcp - 3000:3000/tcp labels: io.rancher.container.pull_image: always postgres: image: postgres:9.5 environment: POSTGRES_DB: gogs POSTGRES_PASSWORD: vergessen1974 POSTGRES_USER: Sebastian volumes: - /mnt/volume-data/gogs/db-data:/var/lib/postgresql/data labels: io.rancher.container.pull_image: always