name: ${STACK} # Explicitly name stacks (do not rely on directory name). networks: edge-net: name: ${EDGE_NET} external: true # All networks SHOULD be external in production. db-net: name: ${DB_NET} external: true services: irm: container_name: ${IRM_CONTAINER} # Name the containers explicitly. image: ${IRM_IMAGE} restart: unless-stopped env_file: # NOTE: .compose.env WILL override .env if there are overlapping values. - .run.env # Runtime ENV - .env # Compose ENV networks: - edge-net - db-net expose: - 3000 # Github Issue: https://github.com/linkwarden/linkwarden/issues/1153 extra_hosts: - "${OIDC_PROVIDER_URL}:${PROXY_IP}"