Skip to content

Commit 07829fe

Browse files
authored
Update deployment.md to remove content about moving Dockerfile (#827)
This part of the docs was made obsolete after #808
1 parent 002c436 commit 07829fe

File tree

1 file changed

+1
-15
lines changed

1 file changed

+1
-15
lines changed

docs/deployment.md

Lines changed: 1 addition & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -130,26 +130,12 @@ Find instructions for this optional step in [the database docs](./database.md).
130130

131131
## Deploying locally using fly
132132

133-
If you'd like to deploy locally you definitely can. You need to (temporarily)
134-
move the `Dockerfile` and the `.dockerignore` to the root of the project first.
135-
Then you can run the deploy command:
133+
If you'd like to deploy locally, just run fly's deploy command:
136134

137135
```
138-
mv ./other/Dockerfile Dockerfile
139-
mv ./other/.dockerignore .dockerignore
140136
fly deploy
141137
```
142138

143-
Once it's done, move the files back:
144-
145-
```
146-
mv Dockerfile ./other/Dockerfile
147-
mv .dockerignore ./other/.dockerignore
148-
```
149-
150-
You can keep the `Dockerfile` and `.dockerignore` in the root if you prefer,
151-
just make sure to remove the move step from the `.github/workflows/deploy.yml`.
152-
153139
## Deploying locally using docker/podman
154140

155141
If you'd like to deploy locally by building a docker container image, you

0 commit comments

Comments
 (0)