This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| version: "3" | |
| services: | |
| s3: | |
| image: scality/s3server | |
| ports: | |
| - "8002:8000" | |
| volumes: | |
| - ./data:/usr/src/app/localData |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| version: "3" | |
| networks: | |
| app_net: | |
| driver: bridge | |
| ipam: | |
| driver: default | |
| config: | |
| - | |
| subnet: 172.16.121.0/24 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| version: '2' | |
| # We're going to rely on an externally created network for our services to get around the | |
| # problem with docker compose using underscores in network and container names (and thus causing | |
| # problems with invalid hostnames). See the comment on 34e78d05af2a287030598e545341ada36e9d24c | |
| # for more details. You can create this network by running: 'docker network create graph' | |
| networks: | |
| graph: | |
| external: true |
NewerOlder