-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4c8d6bb
commit a11633d
Showing
10 changed files
with
74 additions
and
58 deletions.
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
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 |
---|---|---|
|
@@ -7,7 +7,6 @@ | |
{ | ||
"dist": "community", | ||
"version": [ | ||
"v0.99.0-alpha_1575", | ||
"latest" | ||
] | ||
} | ||
|
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 |
---|---|---|
|
@@ -32,9 +32,6 @@ DB_DATABASE=$W9_ID | |
DB_USERNAME=$W9_ID | ||
DB_PASSWORD=$W9_POWER_PASSWORD | ||
|
||
# You should change this to a random string of three numbers or letters followed by an underscore | ||
DB_PREFIX=asd_ | ||
|
||
# These define the first company to exist on this instance. They are only used during setup. | ||
COMPANY_NAME=My Company | ||
COMPANY_EMAIL=[email protected] |
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
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
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 |
---|---|---|
@@ -1,11 +1,15 @@ | ||
# refer to: | ||
# refer to: https://learn.microsoft.com/en-us/azure/developer/ansible/configure-in-docker-container | ||
|
||
FROM centos:centos7 | ||
FROM ghcr.io/ansible-community/community-ee-base:latest | ||
|
||
LABEL maintainer="[email protected]" | ||
LABEL version="latest" | ||
LABEL description="Ansible" | ||
|
||
ENV LANG en_US.UTF-8 | ||
ENV LC_ALL en_US.UTF-8 | ||
|
||
WORKDIR "/ansible/project" | ||
|
||
# Install ansible | ||
|
@@ -24,4 +28,4 @@ RUN git clone https://github.com/Websoft9/role_template | |
VOLUME "/ansible/project" | ||
|
||
# Define the entry point for the docker container. | ||
ENTRYPOINT ["tail", "-f", "/dev/null"] | ||
ENTRYPOINT ["tail", "-f", "/dev/null"] |