-
Notifications
You must be signed in to change notification settings - Fork 303
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add docker compose #28
Open
RCM7
wants to merge
36
commits into
zopanix:master
Choose a base branch
from
RCM7:add-docker-compose
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 2 commits
Commits
Show all changes
36 commits
Select commit
Hold shift + click to select a range
b79bed4
Add docker-compose file
RCM7 67726db
Add docker-compose instructions to Readme.md
RCM7 bf0d759
Add docker-compose file
RCM7 8a7ea22
Add docker-compose instructions to Readme.md
RCM7 65821df
Add environment support to specify the saves and mods directories.
bcrochet 82f5bbd
Merge branch 'bcrochet-add-docker-compose' into add-docker-compose
RCM7 76f63b1
Remove redundant code
RCM7 a44ab07
Merge branch 'bcrochet-add-docker-compose' into add-docker-compose
RCM7 7720dce
Updated to v0.13.14-experimental
bkuhl beeea10
Updated to v0.13.15-experimental
bkuhl 9e67c12
Updated to v0.13.14-experimental
71ddeb2
Updated to v0.13.16-experimental
bkuhl 3198368
Showing docker version
bkuhl 5c44922
Reverted to 0.13.15
bkuhl d0e90a9
Updated to v0.13.16-experimental
bkuhl 9785d47
Updated to v0.13.20
06929ba
Updated to v0.14.0-experimental
756879a
Updated to v0.14.1-experimental
4dde549
Updated to v0.14.2-experimental
2422f27
Updated to v0.14.3-experimental
e0559ed
Updated to v0.14.4-experimental
10a030a
Updated to v0.14.5-experimental
17c1c8e
Updated to v0.14.6-experimental
7635d23
Updated to v0.14.7-experimental
a7467c4
Trying to fix master build of the travis CI
zopanix 2dcd0c3
Changed readme
zopanix 6f863fc
Update README.md
bkuhl b9347a8
Update README.md
bkuhl 1d50210
Updated to v0.14.8-experimental
bkuhl e58f7bf
Add docker-compose file
RCM7 764ab1a
Add docker-compose instructions to Readme.md
RCM7 bd940bb
Add environment support to specify the saves and mods directories.
bcrochet 0c69184
Remove redundant code
RCM7 1bc3835
Make tag in comment and README version independent
RCM7 bbff761
Merge branch 'add-docker-compose' of github.com:RCM7/docker_factorio_…
RCM7 22d2bf6
Fix leftovers of merge in README
RCM7 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
saves | ||
mods | ||
|
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
version: '2' | ||
services: | ||
game: | ||
build: . | ||
#image: zopanix/factorio:v0.13.13-experimental | ||
volumes: | ||
- ./saves:/opt/factorio/saves | ||
- ./mods:/opt/factorio/mods | ||
ports: | ||
- "34197:34197/udp" | ||
environment: | ||
- FACTORIO_AUTOSAVE_INTERVAL=10 | ||
- FACTORIO_AUTOSAVE_SLOTS=15 | ||
- FACTORIO_ALLOW_COMMANDS=false | ||
- FACTORIO_NO_AUTO_PAUSE=false | ||
networks: | ||
- factorio_net | ||
restart: always | ||
|
||
networks: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. No need to specify a network as one is automatically created with |
||
factorio_net: | ||
driver: bridge |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Defaults for the environment are already provided in the Dockerfile, is there a need to redefine them?