Skip to content

Commit f90b0e3

Browse files
committed
chore: move docker/ into infra/ directory.
[skip ci]
1 parent b6a9254 commit f90b0e3

File tree

9 files changed

+6
-6
lines changed

9 files changed

+6
-6
lines changed

.gitignore

+3-3
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@ infra/terraform/terraform.tfvars
3939
infra/terraform/terraform.tfstate
4040
infra/terraform/terraform.tfstate.backup
4141

42-
# used by docker/prod.yml
43-
docker/application-prod.properties
44-
docker/mysql_backup_mystamps.sql.gz
42+
# used by infra/docker/prod.yml
43+
infra/docker/application-prod.properties
44+
infra/docker/mysql_backup_mystamps.sql.gz
4545

4646
# maven-wrapper
4747
.mvn/wrapper/maven-wrapper.jar
File renamed without changes.
File renamed without changes.
File renamed without changes.

docker/README.md renamed to infra/docker/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ possible configurations, we support only those that are typically used:
1313
```
1414
* Run a container with `docker-compose`:
1515
```console
16-
$ cd docker
16+
$ cd infra/docker
1717
$ docker-compose up -d
1818
```
1919
or with a plain Docker:
File renamed without changes.
File renamed without changes.
File renamed without changes.

pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -887,11 +887,11 @@
887887
</goals>
888888
<phase>prepare-package</phase>
889889
<configuration>
890-
<!-- copy docker/Dockerfile to target/ -->
890+
<!-- copy infra/docker/Dockerfile to target/ -->
891891
<outputDirectory>target</outputDirectory>
892892
<resources>
893893
<resource>
894-
<directory>${basedir}/docker</directory>
894+
<directory>${basedir}/infra/docker</directory>
895895
<includes>
896896
<include>Dockerfile</include>
897897
</includes>

0 commit comments

Comments
 (0)